home *** CD-ROM | disk | FTP | other *** search
/ Net Connect / NetConnect - Version 1.iso / amitcp / providers / fin_personaleunet < prev    next >
Encoding:
Text File  |  1996-11-29  |  1.6 KB  |  78 lines

  1. /* Provider Configuration Follows:
  2. Name        FIN_PersonalEunet    ; Name for this configuration
  3. DialUp          1
  4. Interface    ppp        ; ppp|slip
  5. InterfaceConfig ""
  6. NeedSerial      1
  7. IPDynamic    1         ; 1 = YES, 0 = NO
  8. IPAddr                ; IP-address if static
  9. NSDynamic    1        ; 1 = YES, 0 = NO
  10. UseBootP    0        ; 1 = YES, 0 = NO
  11. MTU        576        ; Provider specific
  12. Phone        03039111    ; Provider phone number (without spaces)
  13. */
  14.  
  15. /*
  16.  *    $Id: FIN_PersonalEunet,v 1.1 1996/04/26 16:43:03 jraja Exp jraja $
  17.  *
  18.  *     AmiTCP/IP Dial Script for Personal Eunet Finland
  19.  *
  20.  *    Copyright © 1996 AmiTCP/IP Group,
  21.  *                     Network Solutions Development Inc.
  22.  *                     All rights reserved.
  23.  * 
  24.  */
  25.  
  26. options results
  27. signal on error
  28.  
  29. Set WaitForTimeout 30
  30. Set InterCharDelay 100
  31.  
  32. /* 
  33.  * You can type your login information here: 
  34.  */
  35. YourLogin="YOUR LOGIN"
  36. YourPassword="YOUR PASSWORD"
  37.  
  38. ShowConsole
  39.  
  40. call CommandState
  41.  
  42. call Dial
  43.  
  44. pause 5
  45.  
  46. Say "Dialed successfully, please log on."
  47.  
  48. /*
  49.  * Manual login if user has not edited this script to contain his own
  50.  * user information.
  51.  * DO NOT EDIT THE "YOUR LOGIN" HERE!
  52.  */
  53. if ( YourLogin = "YOUR LOGIN" ) then do
  54.   Say "Please log in manually using the terminal window shown. You can have"
  55.   Say "automated login, if you edit AmiTCP:db/provider.conf to include your"
  56.   Say "login name and password."
  57.   Status "Please log in manually:"
  58.   ManualConsole
  59. end
  60. else do
  61.   SendLn "" 
  62.   SendLn ""
  63.   WaitFor "login:"
  64.   SendLn YourLogin
  65.   WaitFor "password:"
  66.   SendLn YourPassword
  67. end
  68.  
  69. Set NAMESERVER1 192.26.119.7
  70. Set NAMESERVER1 192.26.119.4
  71.  
  72. Pause 2
  73. exit 0; /* succesfull exit */
  74.  
  75. error:
  76. Say "PersonalEunet: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
  77. Exit 10
  78.